home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 January
/
PCWorld_2007-01_cd.bin
/
v cisle
/
autoit
/
autoit-v3.2.0.1-setup.exe
/
Examples
/
Helpfile
/
_GUICtrlMonthCalGetMaxTodayWidth.au3
< prev
next >
Wrap
Text File
|
2006-06-17
|
367b
|
15 lines
#include <GUIConstants.au3>
#include <date.au3>
#include <GuiMonthCal.au3>
opt('MustDeclareVars', 1)
Dim $Date
GUICreate( "Get Max Today Width", 210, 190)
$Date = GUICtrlCreateMonthCal (_NowCalcDate(), 10, 10)
GUISetState()
MsgBox(0, 'Maximum width of the "today" string in a month calendar control.', _GUICtrlMonthCalGetMaxTodayWidth ($Date), 10)